home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {userappdata} / RJ TextEd / Syntax / ActionScript.ini < prev    next >
Encoding:
INI File  |  2008-12-09  |  1.1 KB  |  32 lines

  1. [UserMenu]
  2.  
  3. [MultiHighlight]
  4. Syntax=
  5. File=
  6.  
  7. [Comment]
  8. 1=***************************************************************************
  9. 2=
  10. 3=<b>Syntax:          ActionScript 3.0                                  </b>
  11. 4=<b>Version:         0.0                                               </b>
  12. 5=<b>Date:            10.09.2008                                        </b>
  13. 6=<b>Author:          n.n. from Ultraedit - see example for success     </b>
  14. 7=                           Converted to RJ TextEd and edited by Rickard Johansson
  15. 8=
  16. 9=<b>source file:     ActionScript 3.0 Wordfile 1.1.txt                 </b>
  17. 10=<b>filter:          ultraedit2rjedit-awk.txt                          </b>
  18. 11=<b>filter version:  $Revision: 1.23 $/$Date: 2006/08/15 20:05:10 $    </b>
  19. 12=
  20. 13=<b>file extensions: .as                                                </b>
  21. 14=
  22. 15=***************************************************************************
  23.  
  24. [Sample]
  25. 1=function sqr(x:Number) {
  26. 2=return Math.pow(x, 2);
  27. 3=}
  28. 4=var y:Number = sqr(3);
  29. 5=trace(y); // output: 9
  30. 6=
  31.  
  32.